home *** CD-ROM | disk | FTP | other *** search
/ Medabots Cardz / Medabots CD Cardz Rokusho.bin / pc / assets / rokusho.dxr / 00205_Script_205 < prev    next >
Text File  |  2001-12-07  |  446b  |  27 lines

  1. property mysprite
  2. global wipeaway
  3.  
  4. on beginsprite me
  5.   if wipeaway = 1 then 
  6.     puppettransition 1,2,20,FALSE
  7.   end if
  8.   
  9.   wipeaway = 0
  10.   set mysprite to the spritenum of me
  11. end
  12.  
  13. on mouseEnter me
  14.   cursor 280
  15.   set the member of sprite mysprite to ("playrollover")
  16. end
  17.  
  18. on mouseLeave me 
  19.   cursor 0
  20.   set the member of sprite mysprite to ("play")
  21. end
  22.  
  23. on mouseUp me
  24.   cursor 0
  25.   set the movieRate of sprite(7) = 1
  26. end
  27.